home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
TeX 1995 July
/
TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO
/
macros
/
texsis
/
Unix
/
unbundle
< prev
Wrap
Text File
|
1992-04-16
|
512b
|
22 lines
#!/bin/sh
# unbundle - Use this shell script to unbundle the Unix bundle files for
# TeXsis.
# (This isn't very useful if it is in the bundles, so send it separately.)
#
# usage: unbundle [-c]
#
# The -c argument is passed to the bundles and causes existing
# files to be clobbered.
#
# ---------- first uncompress the files if they were compressed
#uncompress TEXSIS??.Z
# ---------- then run each bundle through /bin/sh
a=`/bin/ls TEXSIS??`
for f in $a
do
echo UNPACKING $f...
sh $f $1
done